home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 3.2 / Ham Radio Version 3.2 (Chestnut CD-ROMs)(1993).ISO / packet / n17jsrc / session.h < prev    next >
C/C++ Source or Header  |  1991-04-30  |  3KB  |  104 lines

  1. /* Mods by PA0GRI */
  2. #ifndef    _SESSION_H
  3. #define    _SESSION_H
  4.  
  5. #include <stdio.h>
  6.  
  7. #ifndef    _GLOBAL_H
  8. #include "global.h"
  9. #endif
  10.  
  11. #ifndef    _PROC_H
  12. #include "proc.h"
  13. #endif
  14.  
  15. #ifndef _HARDWARE_H
  16. #include "hardware.h"
  17. #endif
  18.  
  19.  
  20. #ifndef    _FTPCLI_H
  21. #include "ftpcli.h"
  22. #endif
  23.  
  24. #ifndef    _TELNET_H
  25. #include "telnet.h"
  26. #endif
  27.  
  28. #define    MOREROWS    24    /* rows on screen before --more-- */
  29.  
  30. struct ttystate {
  31.     struct mbuf *line;    /* Line buffer */
  32.     int echo;        /* Keyboard local echoing? */
  33.     int edit;        /* Local editing? */
  34.     int crnl;        /* Translate cr to lf? */
  35. };
  36.  
  37. /* Session control structure; only one entry is used at a time */
  38. struct session {
  39.     int type;
  40. #define    FREE    0
  41. #define    TELNET    1
  42. #define    FTP    2
  43. #define    AX25TNC    3
  44. #define    FINGER    4
  45. #define    PING    5
  46. #define NRSESSION 6
  47. #define    COMMAND    7
  48. #define    MORE    8
  49. #define    HOP    9
  50. #define    TIP    10
  51. #define    PPPPASS    11
  52. #define DIAL    12
  53. #define    RLOGIN    13
  54.  
  55.     char *name;    /* Name of remote host */
  56.     union {
  57.         struct ftpcli *ftp;
  58.         struct telnet *telnet;
  59.     } cb;
  60.     struct proc *proc;    /* Primary session process (e.g., tn recv) */
  61.     struct proc *proc1;    /* Secondary session process (e.g., tn xmit) */
  62.     struct proc *proc2;    /* Tertiary session process (e.g., upload) */
  63.     int s;            /* Primary network socket (control for FTP) */
  64.     FILE *record;        /* Receive record file */
  65.     char *rfile;        /* Record file name */
  66.     FILE *upload;        /* Send file */
  67.     char *ufile;        /* Upload file name */
  68.     struct ttystate ttystate;
  69.     struct screen *screen;
  70.     int input;        /* Input socket */
  71.     int output;        /* Output socket */
  72.     int flowmode;        /* control "more" mode */
  73.     int row;        /* Rows remaining until "more" */
  74.     int morewait;        /* Output driver is waiting on us */
  75.     int tsavex;        /* Save for x top screen */
  76.     int tsavey;        /* Save for y top screen */
  77.     int bsavex;        /* Save for x bottom screen */
  78.     int bsavey;        /* Save for y bottom screen */
  79.     int split;        /* Signal for split screen */
  80. };
  81. #define    NULLSESSION    (struct session *)0
  82.  
  83. extern char *Sestypes[];
  84. extern unsigned Nsessions;        /* Maximum number of sessions */
  85. extern struct session *Sessions;    /* Session descriptors themselves */
  86. extern struct session *Current;        /* Always points to current session */
  87. extern struct session *Lastcurr;    /* Last non-command session */
  88. extern struct session *Command;        /* Pointer to command session */
  89.  
  90. /* In session.c: */
  91. void freesession __ARGS((struct session *sp));
  92. struct session *sessptr __ARGS((char *cp));
  93. struct session *newsession __ARGS((char *name,int type,int split));
  94. void upload __ARGS((int unused,void *sp1,void *p));
  95.  
  96. /* In pc.c: */
  97. void swapscreen __ARGS((struct session *old,struct session *new));
  98.  
  99. extern int16 Lport;
  100. #define    ALERT_EOF    1
  101.  
  102.  
  103. #endif    /* _SESSION_H */
  104.